blob: 0d3faacbf511b5cbbb6884c3b875af240d6542b1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
import type { Metadata } from 'next';
import { SegmentsPage } from './SegmentsPage';
export default async function ({ params }: { params: Promise<{ websiteId: string }> }) {
const { websiteId } = await params;
return <SegmentsPage websiteId={websiteId} />;
}
export const metadata: Metadata = {
title: 'Segments',
};
|